home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <stdlib.h>
- #include <dos.h>
- #include "define.h"
-
- /* CD-ROM ドライブの回転停止時間の設定 */
- /* return 0 -> 正常終了
- * 0以外 -> エラー
- * 注意!! 次のアクセス後有効になります.
- */
- int cdr_stptime(int dev_no, int stop_time)
- {
- union REGS reg;
-
- reg.h.ah = 0x52;
- reg.h.al = 0xC0 | (u_char) dev_no;
- reg.h.ch = 0xFF;
- reg.h.cl = (u_short) stop_time;
-
- int86(0x93, ®, ®);
-
- if (reg.h.ah == 0) {
- return 0;
- } else if (reg.h.ah == 0x02) { /* device number error */
- return DEVERR;
- } else { /* hard ware error */
- return reg.x.cx;
- }
- }
-
-